BefatorNix/olefile.nix
2025-08-25 15:06:11 +02:00

14 lines
355 B
Nix

{stdenv, python27Packages}: python27Packages.buildPythonPackage rec {
pname = "olefile";
version = "0.44";
format = "setuptools";
src = python27Packages.fetchPypi {
inherit pname version;
extension = "zip";
hash = "sha256-YfLKDNCqdyeeuUPAf2B0OO3zdAlrZjMvrh7mSm8Pc60=";
};
propagatedBuildInputs = [python27Packages.setuptools];
}