pythonPackages.pefile: init at 2019.4.18

This commit is contained in:
Pamplemousse 2019-07-15 13:13:55 -07:00 committed by Jon
parent e84840117b
commit f224751a1a
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ buildPythonPackage
, future
, fetchPypi
, lib
}:
buildPythonPackage rec {
pname = "pefile";
version = "2019.4.18";
propagatedBuildInputs = [ future ];
src = fetchPypi {
inherit pname version;
sha256 = "a5d6e8305c6b210849b47a6174ddf9c452b2888340b8177874b862ba6c207645";
};
# Test data encrypted.
doCheck = false;
# Verify import still works.
pythonImportsCheck = [ "pefile" ];
meta = with lib; {
description = "Multi-platform Python module to parse and work with Portable Executable (aka PE) files";
homepage = "https://github.com/erocarrera/pefile";
license = licenses.mit;
maintainers = [ maintainers.pamplemousse ];
};
}

View file

@ -858,6 +858,8 @@ in {
pyperf = callPackage ../development/python-modules/pyperf { };
pefile = callPackage ../development/python-modules/pefile { };
perfplot = callPackage ../development/python-modules/perfplot { };
phonopy = callPackage ../development/python-modules/phonopy { };