pythonPackages.furl: 2.0.0 -> 2.1.0
This commit is contained in:
parent
e9578b9736
commit
384afdc82c
@ -1,22 +1,27 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, flake8, six, orderedmultidict }:
|
{ stdenv, buildPythonPackage, fetchPypi, flake8, six, orderedmultidict, pytest }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "furl";
|
pname = "furl";
|
||||||
version = "2.0.0";
|
version = "2.1.0";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1v2lakx03d5w8954a39ki44xv5mllnq0a0avhxykv9hrzg0yvjpx";
|
sha256 = "08dnw3bs1mk0f1ccn466a5a7fi1ivwrp0jspav9arqpf3wd27q60";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ flake8 ];
|
checkInputs = [ flake8 pytest ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ six orderedmultidict ];
|
propagatedBuildInputs = [ six orderedmultidict ];
|
||||||
|
|
||||||
|
# see https://github.com/gruns/furl/issues/121
|
||||||
|
checkPhase = ''
|
||||||
|
pytest -k 'not join'
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "URL manipulation made simple.";
|
description = "furl is a small Python library that makes parsing and manipulating URLs easy";
|
||||||
homepage = https://github.com/gruns/furl;
|
homepage = "https://github.com/gruns/furl";
|
||||||
license = licenses.publicDomain;
|
license = licenses.unlicense;
|
||||||
maintainers = with maintainers; [ vanzef ];
|
maintainers = with maintainers; [ vanzef ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user