depot/third_party/nixpkgs/pkgs/development/python-modules/yaswfp/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

31 lines
707 B
Nix

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