tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
pythonPackages.parsimonious: 0.7.0 -> 0.8.1
Chris Ostrouchov
7 years ago
47f54a48
e814fba3
+7
-8
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
parsimonious
default.nix
+7
-8
pkgs/development/python-modules/parsimonious/default.nix
reviewed
···
1
1
{ stdenv
2
2
, buildPythonPackage
3
3
-
, fetchFromGitHub
3
3
+
, fetchPypi
4
4
, nose
5
5
, six
6
6
}:
7
7
8
8
buildPythonPackage rec {
9
9
-
version = "0.7.0";
9
9
+
version = "0.8.1";
10
10
pname = "parsimonious";
11
11
12
12
-
src = fetchFromGitHub {
13
13
-
repo = "parsimonious";
14
14
-
owner = "erikrose";
15
15
-
rev = version;
16
16
-
sha256 = "087npc8ccryrxabmqifcz56w4wd0hzmv0mc91wrbhc1sil196j0a";
12
12
+
src = fetchPypi {
13
13
+
inherit pname version;
14
14
+
sha256 = "3add338892d580e0cb3b1a39e4a1b427ff9f687858fdd61097053742391a9f6b";
17
15
};
18
16
19
19
-
propagatedBuildInputs = [ nose six ];
17
17
+
checkInputs = [ nose ];
18
18
+
propagatedBuildInputs = [ six ];
20
19
21
20
meta = with stdenv.lib; {
22
21
homepage = "https://github.com/erikrose/parsimonious";