icoextract: init at 0.1.4
for use with bottles
This commit is contained in:
committed by
Martino Fontana
parent
d1a4e0784b
commit
7aa3e528bf
@@ -0,0 +1,31 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, pefile, pillow}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "icoextract";
|
||||
version = "0.1.4";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
extension = "tar.gz";
|
||||
sha256 = "sha256-x0GEV0PUbkAzoUJgAqup9bHd7iYttGyzIZNdo8KsFyo=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
pefile
|
||||
pillow
|
||||
];
|
||||
|
||||
# tests expect mingw and multiarch
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"icoextract"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Extract icons from Windows PE files";
|
||||
homepage = "https://github.com/jlu5/icoextract";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ bryanasdev000 ];
|
||||
};
|
||||
}
|
||||
@@ -4369,6 +4369,8 @@ self: super: with self; {
|
||||
|
||||
idasen = callPackage ../development/python-modules/idasen { };
|
||||
|
||||
icoextract = callPackage ../development/python-modules/icoextract { };
|
||||
|
||||
icontract = callPackage ../development/python-modules/icontract { };
|
||||
|
||||
identify = callPackage ../development/python-modules/identify { };
|
||||
|
||||
Reference in New Issue
Block a user