about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/strict-rfc3339/default.nix
blob: 7f45f326903a738b2c3c5864aff50c159027676f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "strict-rfc3339";
  version = "0.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5cad17bedfc3af57b399db0fed32771f18fc54bbd917e85546088607ac5e1277";
  };

  doCheck = false;

  meta = with stdenv.lib; {
    homepage = "https://github.com/danielrichman/strict-rfc3339";
    license = licenses.gpl3;
    description = "Strict, simple, lightweight RFC3339 functions";
    maintainers = with maintainers; [ vanschelven ];
  };
}