Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPythonPackage 2, lib 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "XStatic-asciinema-player"; 8 version = "2.6.1.1"; 9 10 src = fetchPypi { 11 inherit version pname; 12 sha256 = "sha256-yA6WC067St82Dm6StaCKdWrRBhmNemswetIO8iodfcw="; 13 }; 14 15 # no tests implemented 16 doCheck = false; 17 18 meta = with lib; { 19 homepage = "https://github.com/python-xstatic/asciinema-player"; 20 description = "Asciinema-player packaged for python"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ aither64 ]; 23 }; 24}