pythonPackages.furl: init at 2.0.0

This commit is contained in:
Ivan Solyankin 2019-08-12 16:05:32 +03:00 committed by Frederik Rietdijk
parent 018d0459f8
commit f4f450f3a5
2 changed files with 24 additions and 0 deletions

View 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 ];
};
}

View file

@ -690,6 +690,8 @@ in {
fsspec = callPackage ../development/python-modules/fsspec { };
furl = callPackage ../development/python-modules/furl { };
fuse = callPackage ../development/python-modules/fuse-python {
inherit (pkgs) fuse pkgconfig;
};