Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 21 lines 518 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, pbr, setuptools, six }: 2 3buildPythonPackage rec { 4 pname = "stevedore"; 5 version = "1.31.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "054apq55yg7058pmbnyc8jhrcpi9clmi0sm7znhwg0d676brywz0"; 10 }; 11 12 doCheck = false; 13 14 propagatedBuildInputs = [ pbr setuptools six ]; 15 16 meta = with stdenv.lib; { 17 description = "Manage dynamic plugins for Python applications"; 18 homepage = https://pypi.python.org/pypi/stevedore; 19 license = licenses.asl20; 20 }; 21}