blob: 41b97a81150280758fc74f48988f47b7212e79e6 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "udatetime";
version = "0.0.17";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-sQvFVwaZpDinLitaZOdr2MKO4779FvIJOHpVB/oLgwE=";
};
# tests not included on pypi
doCheck = false;
pythonImportsCheck = [ "udatetime" ];
meta = with lib; {
description = "Fast RFC3339 compliant Python date-time library";
mainProgram = "bench_udatetime.py";
homepage = "https://github.com/freach/udatetime";
license = licenses.asl20;
maintainers = with maintainers; [ globin ];
};
}
|