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