python3Packages.yaswfp: init at unstable-20210331

This commit is contained in:
Fabian Affolter 2021-03-31 12:12:38 +02:00
parent 63be3d6498
commit 2a74bb07be
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "yaswfp";
version = "unstable-20210331";
src = fetchFromGitHub {
owner = "facundobatista";
repo = pname;
rev = "2a2cc6ca4c0b4d52bd2e658fb5f80fdc0db4924c";
sha256 = "1dxdz89hlycy1rnn269fwl1f0qxgxqarkc0ivs2m77f8xba2qgj9";
};
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "yaswfp" ];
meta = with lib; {
description = "Python SWF Parser";
homepage = "https://github.com/facundobatista/yaswfp";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -9002,6 +9002,8 @@ in {
yarl = callPackage ../development/python-modules/yarl { };
yaswfp = callPackage ../development/python-modules/yaswfp { };
yattag = callPackage ../development/python-modules/yattag { };
ydiff = callPackage ../development/python-modules/ydiff { };