2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage, pytest, pytestcov }:
|
2017-03-20 16:36:57 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "distro";
|
2020-06-06 07:47:04 +01:00
|
|
|
version = "1.5.0";
|
2017-03-20 16:36:57 +00:00
|
|
|
|
2019-03-14 12:09:57 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:04 +01:00
|
|
|
sha256 = "0e58756ae38fbd8fc3020d54badb8eae17c5b9dcbed388b17bb55b8a5928df92";
|
2019-03-14 12:09:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# TODO: Enable more tests on NixOS (20 out of 173 are failing, 10 due to the
|
|
|
|
# missing lsb_release binary):
|
|
|
|
patches = [ ./nixos.patch ];
|
|
|
|
|
2019-02-15 11:58:47 +00:00
|
|
|
checkInputs = [ pytest pytestcov ];
|
2017-03-20 16:36:57 +00:00
|
|
|
|
|
|
|
checkPhase = ''
|
2019-02-15 11:58:47 +00:00
|
|
|
py.test
|
2017-03-20 16:36:57 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/nir0s/distro";
|
2017-03-20 16:36:57 +00:00
|
|
|
description = "Linux Distribution - a Linux OS platform information API.";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ nand0p ];
|
|
|
|
};
|
|
|
|
}
|