depot/third_party/nixpkgs/pkgs/development/python-modules/yaswfp/default.nix
Default email bba55970ba Project import generated by Copybara.
GitOrigin-RevId: 3d1a7716d7f1fccbd7d30ab3b2ed3db831f43bde
2021-04-05 17:23:46 +02:00

30 lines
645 B
Nix

{ 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 ];
};
}