Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "Sphinx-PyPI-upload"; 8 version = "0.2.1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "5f919a47ce7a7e6028dba809de81ae1297ac192347cf6fc54efca919d4865159"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "Setuptools command for uploading Sphinx documentation to PyPI"; 17 homepage = https://bitbucket.org/jezdez/sphinx-pypi-upload/; 18 license = licenses.bsd0; 19 }; 20 21}