mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.pefile: init at 2019.4.18
This commit is contained in:
parent
e84840117b
commit
f224751a1a
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/pefile/default.nix
Normal file
30
pkgs/development/python-modules/pefile/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue