python310Packages.pefile: 2021.9.3 -> 2022.5.30
This commit is contained in:
parent
d465833bab
commit
2370e4ec3a
1 changed files with 8 additions and 4 deletions
|
@ -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…
Reference in a new issue