ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / nanotime / default.nix
blobfc9306eb5714c30afcaf5d8bad6bcbd4f6fe87a3
1 { lib, buildPythonPackage, fetchPypi, nose }:
3 buildPythonPackage rec {
4   pname = "nanotime";
5   version = "0.5.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "c7cc231fc5f6db401b448d7ab51c96d0a4733f4b69fabe569a576f89ffdf966b";
10   };
12   checkInputs = [ nose ];
14   checkPhase = ''
15     nosetests
16   '';
18   # tests currently fail
19   doCheck = false;
21   meta = with lib; {
22     description = "Provides a time object that keeps time as the number of nanoseconds since the UNIX epoch";
23     homepage = "https://github.com/jbenet/nanotime/tree/master/python";
24     license = licenses.mit;
25     maintainers = with maintainers; [ cmcdragonkai ];
26   };