My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/chainmap/default.nix

21 lines
493 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "chainmap";
version = "1.0.3";
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 = with maintainers; [ abbradar ];
};
}