nixpkgs/pkgs/development/python-modules/ciso8601/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

43 lines
785 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, pytestCheckHook
, pytz
}:
buildPythonPackage rec {
pname = "ciso8601";
version = "2.3.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "closeio";
repo = "ciso8601";
rev = "refs/tags/v${version}";
hash = "sha256-qTpt91Wf3L6Jl7FU8sn9PvGMRd/cjhQ1mQvUaQeLFQU=";
};
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
pytz
];
pytestFlagsArray = [
"tests/tests.py"
];
pythonImportsCheck = [ "ciso8601" ];
meta = with lib; {
description = "Fast ISO8601 date time parser for Python written in C";
homepage = "https://github.com/closeio/ciso8601";
license = licenses.mit;
maintainers = with maintainers; [ mic92 ];
};
}