nixpkgs/pkgs/development/python-modules/colorlover/default.nix
2019-02-17 14:40:17 +01:00

23 lines
542 B
Nix

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