nixpkgs/pkgs/development/python-modules/iso8601/default.nix

28 lines
522 B
Nix
Raw Normal View History

2017-12-31 10:48:00 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "iso8601";
version = "0.1.13";
2017-12-31 10:48:00 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "f7dec22af52025d4526be94cc1303c7d8f5379b746a3f54a8c8446384392eeb1";
2017-12-31 10:48:00 +00:00
};
checkInputs = [ pytest ];
checkPhase = ''
py.test iso8601
'';
meta = {
homepage = "https://bitbucket.org/micktwomey/pyiso8601/";
2017-12-31 10:48:00 +00:00
description = "Simple module to parse ISO 8601 dates";
maintainers = with lib.maintainers; [ phreedom ];
};
}