pythonPackages.furl: init at 2.0.0
This commit is contained in:
parent
018d0459f8
commit
f4f450f3a5
22
pkgs/development/python-modules/furl/default.nix
Normal file
22
pkgs/development/python-modules/furl/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, flake8, six, orderedmultidict }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "furl";
|
||||||
|
version = "2.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1v2lakx03d5w8954a39ki44xv5mllnq0a0avhxykv9hrzg0yvjpx";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ flake8 ];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six orderedmultidict ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "URL manipulation made simple.";
|
||||||
|
homepage = https://github.com/gruns/furl;
|
||||||
|
license = licenses.publicDomain;
|
||||||
|
maintainers = with maintainers; [ vanzef ];
|
||||||
|
};
|
||||||
|
}
|
@ -690,6 +690,8 @@ in {
|
|||||||
|
|
||||||
fsspec = callPackage ../development/python-modules/fsspec { };
|
fsspec = callPackage ../development/python-modules/fsspec { };
|
||||||
|
|
||||||
|
furl = callPackage ../development/python-modules/furl { };
|
||||||
|
|
||||||
fuse = callPackage ../development/python-modules/fuse-python {
|
fuse = callPackage ../development/python-modules/fuse-python {
|
||||||
inherit (pkgs) fuse pkgconfig;
|
inherit (pkgs) fuse pkgconfig;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user