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

buildPythonPackage rec {
  pname = "bunch";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1akalx2pd1fjlvrq69plvcx783ppslvikqdm93z2sdybq07pmish";
  };

  doCheck = false;

  meta = with stdenv.lib; {
    maintainers = with maintainers; [ ];
  };
}