nixpkgs/pkgs/development/python-modules/cycler/default.nix
Frederik Rietdijk 5772ac5a75 Removing FRidh as active maintainer of packages
In the past I was very active with Python packaging.
For several years now I was hardly around as maintainer,
so it does not make sense I am listed as a maintainer for
these makes. Looking back, I should have removed myself
as maintainer already much longer ago. Anyway, better late
than never.

It's been a fun ride, and  I do intend to occasionally contribute
to Nixpkgs, but not in the same way it once was.
2024-04-28 12:20:07 +02:00

41 lines
732 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
# build-system
, setuptools
# tests
, pytest-xdist
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "cycler";
version = "0.12.1";
pyproject = true;
src = fetchFromGitHub {
owner = "matplotlib";
repo = "cycler";
rev = "refs/tags/v${version}";
hash = "sha256-5L0APSi/mJ85SuKCVz+c6Fn8zZNpRm6vCeBO0fpGKxg=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytest-xdist
pytestCheckHook
];
meta = {
changelog = "https://github.com/matplotlib/cycler/releases/tag/v${version}";
description = "Composable style cycles";
homepage = "https://github.com/matplotlib/cycler";
license = lib.licenses.bsd3;
};
}