tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.xstatic-asciinema-player: init at 2.6.1.1
Jakub Skokan
2 years ago
13d5bbfd
79eab03a
+26
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
xstatic-asciinema-player
default.nix
top-level
python-packages.nix
+24
pkgs/development/python-modules/xstatic-asciinema-player/default.nix
reviewed
···
1
1
+
{ buildPythonPackage
2
2
+
, lib
3
3
+
, fetchPypi
4
4
+
}:
5
5
+
6
6
+
buildPythonPackage rec {
7
7
+
pname = "XStatic-asciinema-player";
8
8
+
version = "2.6.1.1";
9
9
+
10
10
+
src = fetchPypi {
11
11
+
inherit version pname;
12
12
+
sha256 = "sha256-yA6WC067St82Dm6StaCKdWrRBhmNemswetIO8iodfcw=";
13
13
+
};
14
14
+
15
15
+
# no tests implemented
16
16
+
doCheck = false;
17
17
+
18
18
+
meta = with lib; {
19
19
+
homepage = "https://github.com/python-xstatic/asciinema-player";
20
20
+
description = "Asciinema-player packaged for python";
21
21
+
license = licenses.asl20;
22
22
+
maintainers = with maintainers; [ aither64 ];
23
23
+
};
24
24
+
}
+2
pkgs/top-level/python-packages.nix
reviewed
···
13040
13040
13041
13041
xsdata = callPackage ../development/python-modules/xsdata { };
13042
13042
13043
13043
+
xstatic-asciinema-player = callPackage ../development/python-modules/xstatic-asciinema-player { };
13044
13044
+
13043
13045
xstatic-bootbox = callPackage ../development/python-modules/xstatic-bootbox { };
13044
13046
13045
13047
xstatic-bootstrap = callPackage ../development/python-modules/xstatic-bootstrap { };