ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / yaswfp / default.nix
blob267052f5c17dee7fb3750efa97df5e3044be8d69
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "yaswfp";
9   version = "unstable-20210331";
11   src = fetchFromGitHub {
12     owner = "facundobatista";
13     repo = pname;
14     rev = "2a2cc6ca4c0b4d52bd2e658fb5f80fdc0db4924c";
15     sha256 = "1dxdz89hlycy1rnn269fwl1f0qxgxqarkc0ivs2m77f8xba2qgj9";
16   };
18   checkInputs = [
19     pytestCheckHook
20   ];
22   pythonImportsCheck = [ "yaswfp" ];
24   meta = with lib; {
25     description = "Python SWF Parser";
26     homepage = "https://github.com/facundobatista/yaswfp";
27     license = with licenses; [ gpl3Only ];
28     maintainers = with maintainers; [ fab ];
29   };