Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 539 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, mock 5}: 6 7buildPythonPackage rec { 8 version = "0.5.1"; 9 pname = "humanize"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "a43f57115831ac7c70de098e6ac46ac13be00d69abbf60bdcac251344785bb19"; 14 }; 15 16 buildInputs = [ mock ]; 17 18 doCheck = false; 19 20 meta = with stdenv.lib; { 21 description = "Python humanize utilities"; 22 homepage = https://github.com/jmoiron/humanize; 23 license = licenses.mit; 24 maintainers = with maintainers; [ ]; 25 platforms = platforms.unix; 26 }; 27 28}