Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 495 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, pbr, six }: 2 3buildPythonPackage rec { 4 pname = "stevedore"; 5 version = "1.30.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0161pwgv6514ks6lky8642phlcqks5w8j5sacdnbfgx5s6nwfaxr"; 10 }; 11 12 doCheck = false; 13 14 propagatedBuildInputs = [ pbr 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}