hiro: init at 0.1.4
This commit is contained in:
parent
a298167152
commit
f252c72669
19
pkgs/development/python-modules/hiro/default.nix
Normal file
19
pkgs/development/python-modules/hiro/default.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, six, mock }:
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "hiro";
|
||||||
|
version = "0.1.4";
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
|
||||||
|
sha256 = "1340lhg7k522bqpz5iakl51qb47mjw804mfwwzm77i7qcm5cwiz8";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ six mock ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Time manipulation utilities for Python";
|
||||||
|
homepage = http://hiro.readthedocs.io/en/latest/;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ nyarly ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user