1{ stdenv, buildPythonPackage, fetchPypi, flake8, six, orderedmultidict, isPy38 }:
2
3buildPythonPackage rec {
4 pname = "furl";
5 version = "2.0.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1v2lakx03d5w8954a39ki44xv5mllnq0a0avhxykv9hrzg0yvjpx";
10 };
11
12 checkInputs = [ flake8 ];
13
14 propagatedBuildInputs = [ six orderedmultidict ];
15
16 meta = with stdenv.lib; {
17 description = "URL manipulation made simple.";
18 homepage = https://github.com/gruns/furl;
19 license = licenses.publicDomain;
20 maintainers = with maintainers; [ vanzef ];
21 broken = isPy38;
22 };
23}