depot/third_party/nixpkgs/pkgs/development/python-modules/xstatic-asciinema-player/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

25 lines
565 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 ];
};
}