summary refs log blame commit diff
path: root/pkgs/development/python-modules/chainmap/default.nix
blob: eb769ed46239183c2d488265f9be1f05a936b3c9 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                          
                    


                          
                                                                                






                                               
                                                      



                                                 
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "chainmap";
  version = "1.0.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e42aaa4b3e2f66102a11bfd563069704bfbfd84fdcb517b564effd736bf53cd9";
  };

  # Requires tox
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Backport/clone of ChainMap";
    homepage = https://bitbucket.org/jeunice/chainmap;
    license = licenses.psfl;
    maintainers = with maintainers; [ abbradar ];
  };
}