blob: c5676e44086477310967383a474d6fc3b38b6fe3 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
repeated-test,
}:
buildPythonPackage rec {
pname = "od";
version = "2.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-uGkj2Z8mLg51IV+FOqwZl1hT7zVyjmD1CcY/VbH4tKk=";
};
nativeCheckInputs = [ repeated-test ];
pythonImportsCheck = [ "od" ];
meta = {
description = "Shorthand syntax for building OrderedDicts";
homepage = "https://github.com/epsy/od";
license = lib.licenses.mit;
maintainers = [ ];
};
}
|