Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 flit-core, 6 pygments, 7}: 8 9buildPythonPackage rec { 10 pname = "alabaster"; 11 version = "0.7.16"; 12 pyproject = true; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-dai5nCil2tUN1/jM3UR6Eh3bOJLanlPRylzKMQbVjWU="; 17 }; 18 19 nativeBuildInputs = [ flit-core ]; 20 21 propagatedBuildInputs = [ pygments ]; 22 23 # No tests included 24 doCheck = false; 25 26 meta = with lib; { 27 homepage = "https://github.com/bitprophet/alabaster"; 28 description = "Sphinx theme"; 29 license = licenses.bsd3; 30 }; 31}