tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.spinners: init at 0.0.24
Matej Urbas
5 years ago
ea0edd8e
a354c8ff
+28
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
spinners
default.nix
top-level
python-packages.nix
+26
pkgs/development/python-modules/spinners/default.nix
···
1
1
+
{ buildPythonPackage
2
2
+
, fetchPypi
3
3
+
, isPy27
4
4
+
, lib }:
5
5
+
6
6
+
buildPythonPackage rec {
7
7
+
pname = "spinners";
8
8
+
version = "0.0.24";
9
9
+
disabled = isPy27;
10
10
+
11
11
+
src = fetchPypi {
12
12
+
inherit pname version;
13
13
+
sha256 = "0zz2z6dpdjdq5z8m8w8dfi8by0ih1zrdq0caxm1anwhxg2saxdhy";
14
14
+
};
15
15
+
16
16
+
# Tests are not included in the PyPI distribution and the git repo does not have tagged releases
17
17
+
doCheck = false;
18
18
+
pythonImportsCheck = [ "spinners" ];
19
19
+
20
20
+
meta = with lib; {
21
21
+
description = "Spinners for the Terminal.";
22
22
+
homepage = "https://github.com/manrajgrover/py-spinners";
23
23
+
license = licenses.mit;
24
24
+
maintainers = with maintainers; [ urbas ];
25
25
+
};
26
26
+
}
+2
pkgs/top-level/python-packages.nix
···
7294
7294
7295
7295
sphfile = callPackage ../development/python-modules/sphfile { };
7296
7296
7297
7297
+
spinners = callPackage ../development/python-modules/spinners { };
7298
7298
+
7297
7299
sphinxcontrib-applehelp = callPackage ../development/python-modules/sphinxcontrib-applehelp { };
7298
7300
7299
7301
sphinxcontrib-autoapi = callPackage ../development/python-modules/sphinxcontrib-autoapi { };