nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

pythonPackages.furl: 2.0.0 -> 2.1.0

authored by

Vincent Breitmoser and committed by
Jon
384afdc8 e9578b97

+12 -7
+12 -7
pkgs/development/python-modules/furl/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchPypi, flake8, six, orderedmultidict }: 1 + { stdenv, buildPythonPackage, fetchPypi, flake8, six, orderedmultidict, pytest }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "furl"; 5 - version = "2.0.0"; 5 + version = "2.1.0"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "1v2lakx03d5w8954a39ki44xv5mllnq0a0avhxykv9hrzg0yvjpx"; 9 + sha256 = "08dnw3bs1mk0f1ccn466a5a7fi1ivwrp0jspav9arqpf3wd27q60"; 10 10 }; 11 11 12 - checkInputs = [ flake8 ]; 12 + checkInputs = [ flake8 pytest ]; 13 13 14 14 propagatedBuildInputs = [ six orderedmultidict ]; 15 15 16 + # see https://github.com/gruns/furl/issues/121 17 + checkPhase = '' 18 + pytest -k 'not join' 19 + ''; 20 + 16 21 meta = with stdenv.lib; { 17 - description = "URL manipulation made simple."; 18 - homepage = https://github.com/gruns/furl; 19 - license = licenses.publicDomain; 22 + description = "furl is a small Python library that makes parsing and manipulating URLs easy"; 23 + homepage = "https://github.com/gruns/furl"; 24 + license = licenses.unlicense; 20 25 maintainers = with maintainers; [ vanzef ]; 21 26 }; 22 27 }