My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/colorlover/default.nix

24 lines
531 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "colorlover";
version = "0.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "b8fb7246ab46e1f5e6715649453c1762e245a515de5ff2d2b4aab7a6e67fa4e2";
};
# no tests included in distributed archive
doCheck = false;
meta = with lib; {
homepage = "https://github.com/jackparmer/colorlover";
description = "Color scales in Python for humans";
license = licenses.mit;
maintainers = with maintainers; [ globin ];
};
}