Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "colorlover"; 9 version = "0.3.0"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "b8fb7246ab46e1f5e6715649453c1762e245a515de5ff2d2b4aab7a6e67fa4e2"; 15 }; 16 17 # no tests included in distributed archive 18 doCheck = false; 19 20 meta = with lib; { 21 homepage = "https://github.com/jackparmer/colorlover"; 22 description = "Color scales in Python for humans"; 23 license = licenses.mit; 24 maintainers = [ ]; 25 }; 26}