Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / cycler / default.nix
blob18e9fa7ed5980301dde9ade62cddac0a1d2e0e19
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
5 # build-system
6 , setuptools
8 # tests
9 , pytest-xdist
10 , pytestCheckHook
13 buildPythonPackage rec {
14   pname = "cycler";
15   version = "0.12.1";
16   pyproject = true;
18   src = fetchFromGitHub {
19     owner = "matplotlib";
20     repo = "cycler";
21     rev = "refs/tags/v${version}";
22     hash = "sha256-5L0APSi/mJ85SuKCVz+c6Fn8zZNpRm6vCeBO0fpGKxg=";
23   };
25   nativeBuildInputs = [
26     setuptools
27   ];
29   nativeCheckInputs = [
30     pytest-xdist
31     pytestCheckHook
32   ];
34   meta = {
35     changelog = "https://github.com/matplotlib/cycler/releases/tag/v${version}";
36     description = "Composable style cycles";
37     homepage = "https://github.com/matplotlib/cycler";
38     license = lib.licenses.bsd3;
39     maintainers = with lib.maintainers; [ fridh ];
40   };