567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
27 lines
492 B
Nix
27 lines
492 B
Nix
{
|
|
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 = {
|
|
description = "Backport/clone of ChainMap";
|
|
homepage = "https://bitbucket.org/jeunice/chainmap";
|
|
license = lib.licenses.psfl;
|
|
maintainers = [ ];
|
|
};
|
|
}
|