ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / colour / default.nix
blobf7419666f53599fd8bd92c1b0ac959e7d5098187
1 { lib, buildPythonPackage, fetchPypi, d2to1 }:
3 buildPythonPackage rec {
4   pname = "colour";
5   version = "0.1.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "af20120fefd2afede8b001fbef2ea9da70ad7d49fafdb6489025dae8745c3aee";
10   };
12   buildInputs = [ d2to1 ];
14   meta = with lib; {
15     description = "Converts and manipulates common color representation (RGB, HSV, web, ...)";
16     homepage = "https://github.com/vaab/colour";
17     license = licenses.bsd2;
18   };