Commit f224751a authored by Pamplemousse's avatar Pamplemousse Committed by Jon
Browse files

pythonPackages.pefile: init at 2019.4.18

parent e8484011
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };