about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/chainmap/default.nix
blob: c2815d876e344dff92273f2953378f32f3fb3050 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, buildPythonPackage, fetchPypi }:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "09h5gq43w516fqswlca0nhmd2q3v8hxq15z4wqrznfwix6ya6pa0";
  };

  # 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 ];
  };
}