Files
nixpkgs/pkgs/development/python-modules/chainmap/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
498 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "chainmap";
version = "1.0.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "e42aaa4b3e2f66102a11bfd563069704bfbfd84fdcb517b564effd736bf53cd9";
};
# Requires tox
doCheck = false;
meta = with lib; {
description = "Backport/clone of ChainMap";
homepage = "https://bitbucket.org/jeunice/chainmap";
license = licenses.psfl;
maintainers = [ ];
};
}