python3Packages.yaswfp: init at unstable-20210331
This commit is contained in:
parent
63be3d6498
commit
2a74bb07be
30
pkgs/development/python-modules/yaswfp/default.nix
Normal file
30
pkgs/development/python-modules/yaswfp/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -9002,6 +9002,8 @@ in {
|
|||||||
|
|
||||||
yarl = callPackage ../development/python-modules/yarl { };
|
yarl = callPackage ../development/python-modules/yarl { };
|
||||||
|
|
||||||
|
yaswfp = callPackage ../development/python-modules/yaswfp { };
|
||||||
|
|
||||||
yattag = callPackage ../development/python-modules/yattag { };
|
yattag = callPackage ../development/python-modules/yattag { };
|
||||||
|
|
||||||
ydiff = callPackage ../development/python-modules/ydiff { };
|
ydiff = callPackage ../development/python-modules/ydiff { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user