Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 buildPythonPackage, 3 lib, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "xstatic"; 9 version = "1.0.3"; 10 11 src = fetchPypi { 12 pname = "XStatic"; 13 inherit version; 14 hash = "sha256-QCVEzJ4XlIlEEFTwnIB4BOEV6iRpB96HwDVftPWjEmg="; 15 }; 16 17 # no tests implemented 18 doCheck = false; 19 20 meta = with lib; { 21 homepage = "https://bitbucket.org/thomaswaldmann/xstatic"; 22 description = "Base packaged static files for python"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ makefu ]; 25 }; 26}