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