blob: 00c4b1263db39e929ba0d4a24a57dcb4321eccbf (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "dotmap";
version = "1.3.30";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-WCGnkz8HX7R1Y0F8DpLgt8AxFYtMmmp+VhY0ebZYs2g=";
};
nativeCheckInputs = [ pytestCheckHook ];
enabledTestPaths = [ "dotmap/test.py" ];
pythonImportsCheck = [ "dotmap" ];
meta = {
description = "Python for dot-access dictionaries";
homepage = "https://github.com/drgrib/dotmap";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|