Merge pull request #51575 from costrouc/costrouc/update-parsimonious
pythonPackages.parsimonious: 0.7.0 -> 0.8.1
This commit is contained in:
commit
e9a44ba627
|
@ -1,22 +1,21 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchPypi
|
||||||
, nose
|
, nose
|
||||||
, six
|
, six
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "0.7.0";
|
version = "0.8.1";
|
||||||
pname = "parsimonious";
|
pname = "parsimonious";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchPypi {
|
||||||
repo = "parsimonious";
|
inherit pname version;
|
||||||
owner = "erikrose";
|
sha256 = "3add338892d580e0cb3b1a39e4a1b427ff9f687858fdd61097053742391a9f6b";
|
||||||
rev = version;
|
|
||||||
sha256 = "087npc8ccryrxabmqifcz56w4wd0hzmv0mc91wrbhc1sil196j0a";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ nose six ];
|
checkInputs = [ nose ];
|
||||||
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/erikrose/parsimonious";
|
homepage = "https://github.com/erikrose/parsimonious";
|
||||||
|
|
Loading…
Reference in New Issue