tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
python39Packages.pep257: cleanup
Sandro Jäckel
4 years ago
7bbd7efd
955a657d
+5
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pep257
default.nix
+5
-7
pkgs/development/python-modules/pep257/default.nix
···
1
-
{ lib, buildPythonPackage, fetchFromGitHub, pytest, mock }:
0
2
buildPythonPackage rec {
3
pname = "pep257";
4
version = "0.7.0";
···
6
src = fetchFromGitHub {
7
owner = "GreenSteam";
8
repo = "pep257";
9
-
rev = "0.7.0";
10
sha256 = "sha256-RkE9kkNkRTmZ8zJVwQzMsxU1hcjlxX6UA+ehnareynQ=";
11
};
12
13
-
checkInputs = [ pytest mock ];
14
-
15
-
checkPhase = ''
16
-
py.test
17
-
'';
18
19
meta = with lib; {
20
homepage = "https://github.com/GreenSteam/pep257/";
21
description = "Python docstring style checker";
22
longDescription = "Static analysis tool for checking compliance with Python PEP 257.";
23
license = licenses.mit;
0
24
};
25
}
···
1
+
{ lib, buildPythonPackage, fetchFromGitHub, pytestCheckHook, mock }:
2
+
3
buildPythonPackage rec {
4
pname = "pep257";
5
version = "0.7.0";
···
7
src = fetchFromGitHub {
8
owner = "GreenSteam";
9
repo = "pep257";
10
+
rev = version;
11
sha256 = "sha256-RkE9kkNkRTmZ8zJVwQzMsxU1hcjlxX6UA+ehnareynQ=";
12
};
13
14
+
checkInputs = [ pytestCheckHook mock ];
0
0
0
0
15
16
meta = with lib; {
17
homepage = "https://github.com/GreenSteam/pep257/";
18
description = "Python docstring style checker";
19
longDescription = "Static analysis tool for checking compliance with Python PEP 257.";
20
license = licenses.mit;
21
+
maintainers = with maintainers; [ ];
22
};
23
}