nixpkgs/pkgs/development/python-modules/distro/default.nix

29 lines
717 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, pytest, pytestcov, tox }:
buildPythonPackage rec {
pname = "distro";
2019-02-14 08:37:14 +01:00
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "0mrg75w4ap7mdzyga75yaid9n8bgb345ih5mwjp3plj6v1jxwb9n";
};
# 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 12:58:47 +01:00
checkInputs = [ pytest pytestcov ];
checkPhase = ''
2019-02-15 12:58:47 +01:00
py.test
'';
meta = with stdenv.lib; {
homepage = https://github.com/nir0s/distro;
description = "Linux Distribution - a Linux OS platform information API.";
license = licenses.asl20;
maintainers = with maintainers; [ nand0p ];
};
}