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

26 lines
570 B
Nix

{
buildPythonPackage,
lib,
fetchPypi,
}:
buildPythonPackage rec {
pname = "xstatic-asciinema-player";
version = "2.6.1.1";
src = fetchPypi {
pname = "XStatic-asciinema-player";
inherit version;
sha256 = "sha256-yA6WC067St82Dm6StaCKdWrRBhmNemswetIO8iodfcw=";
};
# no tests implemented
doCheck = false;
meta = with lib; {
homepage = "https://github.com/python-xstatic/asciinema-player";
description = "Asciinema-player packaged for python";
license = licenses.asl20;
maintainers = with maintainers; [ aither64 ];
};
}