blob: 515977762c4263abb072064daf7511f37e20d5b5 (
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
31
32
33
34
35
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytz,
zope-interface,
}:
buildPythonPackage rec {
pname = "datetime";
version = "6.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "zopefoundation";
repo = "datetime";
tag = version;
hash = "sha256-bxFdj9B0LUbnn/q5RcO3tBwqAMMl3Ovom036y0yfUbE=";
};
propagatedBuildInputs = [
pytz
zope-interface
];
pythonImportsCheck = [ "DateTime" ];
meta = {
description = "DateTime data type, as known from Zope";
homepage = "https://github.com/zopefoundation/DateTime";
changelog = "https://github.com/zopefoundation/DateTime/blob/${version}/CHANGES.rst";
license = lib.licenses.zpl21;
maintainers = with lib.maintainers; [ icyrockcom ];
};
}
|