Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 20 lines 489 B view raw
1{ stdenv, fetchPypi, buildPythonPackage, pytest, tox }: 2 3buildPythonPackage rec { 4 version = "0.3.0"; 5 pname = "node-semver"; 6 7 buildInputs = [ pytest tox ]; 8 9 src = fetchPypi { 10 inherit pname version; 11 sha256 = "d8a3906e7677f8ab05aeb3fc94c7a2fa163def5507271452ce6831282f23f1cb"; 12 }; 13 14 meta = with stdenv.lib; { 15 homepage = https://github.com/podhmo/python-semver; 16 description = "A port of node-semver"; 17 license = licenses.mit; 18 platforms = platforms.all; 19 }; 20}