default.nix (732B)
1 { 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 python3Packages, 6 }: 7 8 python3Packages.buildPythonPackage rec { 9 pname = "cmocean"; 10 version = "4.0.3"; 11 12 src = fetchFromGitHub { 13 owner = "matplotlib"; 14 repo = "cmocean"; 15 tag = "v${version}"; 16 hash = "sha256-Vi+tK2cAwqkoe2CEFCYEqMp28IgeH1MSJ+u3t6D8Zu8="; 17 }; 18 19 dependencies = with python3Packages; [ 20 matplotlib 21 numpy 22 ]; 23 24 nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; 25 26 meta = { 27 description = "Colormap setup for standardizing commonly-plotting oceanographic variables"; 28 homepage = "https://github.com/matplotlib/cmocean"; 29 license = lib.licenses.mit; 30 maintainers = [ lib.maintainers.sikmir ]; 31 broken = stdenv.isDarwin; 32 }; 33 }