python310Packages.pefile: 2021.9.3 -> 2022.5.30

main
Fabian Affolter 2 years ago committed by Jonathan Ringer
parent d465833bab
commit 2370e4ec3a
No known key found for this signature in database
GPG Key ID: 5C841D3CFDFEC4E0
  1. 12
      pkgs/development/python-modules/pefile/default.nix

@ -8,14 +8,16 @@
buildPythonPackage rec {
pname = "pefile";
version = "2021.9.3";
version = "2022.5.30";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "erocarrera";
repo = pname;
rev = "v${version}";
sha256 = "0sr17rmqpr874m8rpkp8xdz8kjshhimbfgq13qy4lscaiznmlf0d";
hash = "sha256-Cv20hJsErHFSuS5Q1kqLNp4DAsPXv/eFhaU9oYECSeI=";
};
nativeBuildInputs = [
@ -29,12 +31,14 @@ buildPythonPackage rec {
# Test data encrypted
doCheck = false;
pythonImportsCheck = [ "pefile" ];
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 ];
maintainers = with maintainers; [ pamplemousse ];
};
}

Loading…
Cancel
Save