7 buildPythonPackage rec {
12 inherit pname version;
13 sha256 = "34f89fc992592c80b39a709e136edcf41ea17f24ba31eaf84a314a02c8b9bcef";
16 # Test file has a `unittest.main()` at the bottom that fails the tests;
17 # py.test can run the tests without it.
19 substituteInPlace test/test_namedlist.py --replace "unittest.main()" ""
22 checkInputs = [ pytest ];
28 description = "Similar to namedtuple, but instances are mutable";
29 homepage = "https://gitlab.com/ericvsmith/namedlist";
30 license = lib.licenses.asl20;
31 maintainers = with lib.maintainers; [ ivan ];