blob: 7a60c30ca71da31d3bf1436a203b881b912fd444 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{
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 = [ ];
};
}
|