tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.gitterpy: init at 0.1.7
jamiemagee.tngl.sh
5 months ago
d96e3ea7
434576cb
+36
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
gitterpy
default.nix
top-level
python-packages.nix
+34
pkgs/development/python-modules/gitterpy/default.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchPypi,
5
5
+
setuptools,
6
6
+
requests,
7
7
+
}:
8
8
+
9
9
+
buildPythonPackage rec {
10
10
+
pname = "gitterpy";
11
11
+
version = "0.1.7";
12
12
+
pyproject = true;
13
13
+
14
14
+
src = fetchPypi {
15
15
+
inherit pname version;
16
16
+
hash = "sha256-nmZ6sVjrHRLfvXMr/fYiN+a4Wly87YKwAR+heP/sNkE=";
17
17
+
};
18
18
+
19
19
+
build-system = [ setuptools ];
20
20
+
21
21
+
dependencies = [ requests ];
22
22
+
23
23
+
# Package has no tests
24
24
+
doCheck = false;
25
25
+
26
26
+
pythonImportsCheck = [ "gitterpy" ];
27
27
+
28
28
+
meta = {
29
29
+
description = "Python interface for the Gitter API";
30
30
+
homepage = "https://github.com/MichaelYusko/GitterPy";
31
31
+
license = lib.licenses.mit;
32
32
+
maintainers = [ lib.maintainers.jamiemagee ];
33
33
+
};
34
34
+
}
+2
pkgs/top-level/python-packages.nix
···
5880
5880
5881
5881
gitpython = callPackage ../development/python-modules/gitpython { };
5882
5882
5883
5883
+
gitterpy = callPackage ../development/python-modules/gitterpy { };
5884
5884
+
5883
5885
giturlparse = callPackage ../development/python-modules/giturlparse { };
5884
5886
5885
5887
glad = callPackage ../development/python-modules/glad { };