blob: 275fcd0e6104b3917ef4e7ae70c3d8cb9fb4536f (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "strict-rfc3339";
version = "0.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "5cad17bedfc3af57b399db0fed32771f18fc54bbd917e85546088607ac5e1277";
};
doCheck = false;
meta = {
homepage = "https://github.com/danielrichman/strict-rfc3339";
license = lib.licenses.gpl3;
description = "Strict, simple, lightweight RFC3339 functions";
maintainers = with lib.maintainers; [ vanschelven ];
};
}
|