depot/third_party/nixpkgs/pkgs/development/python-modules/xstatic-asciinema-player/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

26 lines
568 B
Nix

{
buildPythonPackage,
lib,
fetchPypi,
}:
buildPythonPackage rec {
pname = "xstatic-asciinema-player";
version = "2.6.1.1";
src = fetchPypi {
pname = "XStatic-asciinema-player";
inherit version;
hash = "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 ];
};
}