ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pefile / default.nix
blobb1707670e7689e52adfdde64d95517485becae30
1 { lib
2 , buildPythonPackage
3 , future
4 , fetchFromGitHub
5 , setuptools-scm
6 , pythonOlder
7 }:
9 buildPythonPackage rec {
10   pname = "pefile";
11   version = "2022.5.30";
12   format = "setuptools";
14   disabled = pythonOlder "3.6";
16   src = fetchFromGitHub {
17     owner = "erocarrera";
18     repo = pname;
19     rev = "v${version}";
20     hash = "sha256-Cv20hJsErHFSuS5Q1kqLNp4DAsPXv/eFhaU9oYECSeI=";
21   };
23   nativeBuildInputs = [
24     setuptools-scm
25   ];
27   propagatedBuildInputs = [
28     future
29   ];
31   # Test data encrypted
32   doCheck = false;
34   pythonImportsCheck = [
35     "pefile"
36   ];
38   meta = with lib; {
39     description = "Multi-platform Python module to parse and work with Portable Executable (aka PE) files";
40     homepage = "https://github.com/erocarrera/pefile";
41     license = licenses.mit;
42     maintainers = with maintainers; [ pamplemousse ];
43   };