depot/third_party/nixpkgs/pkgs/development/python-modules/nanotime/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

27 lines
653 B
Nix

{ lib, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
pname = "nanotime";
version = "0.5.2";
src = fetchPypi {
inherit pname version;
sha256 = "c7cc231fc5f6db401b448d7ab51c96d0a4733f4b69fabe569a576f89ffdf966b";
};
checkInputs = [ nose ];
checkPhase = ''
nosetests
'';
# tests currently fail
doCheck = false;
meta = with lib; {
description = "Provides a time object that keeps time as the number of nanoseconds since the UNIX epoch";
homepage = "https://github.com/jbenet/nanotime/tree/master/python";
license = licenses.mit;
maintainers = with maintainers; [ cmcdragonkai ];
};
}