Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 26 lines 637 B view raw
1{ stdenv, pythonPackages }: 2 3with pythonPackages;buildPythonPackage rec { 4 pname = "devpi-common"; 5 version = "3.2.1"; 6 name = "${pname}-${version}"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "e9afa277a9b227d92335c49fab40be2e9bb112c0f4dda84906c14addb1ded2f7"; 11 }; 12 13 propagatedBuildInputs = [ requests py ]; 14 checkInputs = [ pytest ]; 15 16 checkPhase = '' 17 py.test 18 ''; 19 20 meta = with stdenv.lib; { 21 homepage = https://github.com/devpi/devpi; 22 description = "Utilities jointly used by devpi-server and devpi-client"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ lewo makefu ]; 25 }; 26}