587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
25 lines
565 B
Nix
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 ];
|
|
};
|
|
}
|