Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / hiro / default.nix
blob2656c13274ba41923f6624ac0a0fa0a865db9ad9
1 { lib, buildPythonPackage, fetchPypi, six, mock }:
2 buildPythonPackage rec {
3   pname = "hiro";
4   version = "1.1.1";
5   format = "setuptools";
6   src = fetchPypi {
7     inherit pname version;
9     hash = "sha256-2jM5rx3JpZTMqdycccclJysuMGYE5F0OBXXNE8X5XWg=";
10   };
12   propagatedBuildInputs = [ six mock ];
14   meta = with lib; {
15     description = "Time manipulation utilities for Python";
16     homepage = "https://hiro.readthedocs.io/en/latest/";
17     license = licenses.mit;
18     maintainers = with maintainers; [ nyarly ];
19   };