summary refs log tree commit diff
path: root/pkgs/development/python-modules/namedlist/default.nix
blob: ae07076bb05748347b1d9721650b3e363969af5d (plain) (blame)
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
27
28
29
30
31
32
33
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:

buildPythonPackage rec {
  pname = "namedlist";
  version = "1.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "11n9c4a5ak9971awkf1g92m6mcmiprhrw98ik2cmjsqxmz73j2qr";
  };

  # Test file has a `unittest.main()` at the bottom that fails the tests;
  # py.test can run the tests without it.
  postPatch = ''
    substituteInPlace test/test_namedlist.py --replace "unittest.main()" ""
  '';

  checkInputs = [ pytest ];
  checkPhase = ''
    py.test
  '';

  meta = {
    description = "Similar to namedtuple, but instances are mutable";
    homepage = https://bitbucket.org/ericvsmith/namedlist;
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ ivan ];
  };
}