nixpkgs/pkgs/development/python-modules/uptime/default.nix
2018-10-30 00:50:57 -04:00

23 lines
478 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "uptime";
version = "3.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "0wr9jkixprlywz0plyn5p42a5fd31aiwvjrxdvj7r02vfxa04c3w";
};
meta = with stdenv.lib; {
homepage = https://github.com/Cairnarvon/uptime;
description = "Cross-platform way to retrieve system uptime and boot time";
license = licenses.bsd2;
maintainers = with maintainers; [ rob ];
};
}