nixpkgs/pkgs/development/python-modules/distro/default.nix
2023-01-05 01:08:58 +01:00

33 lines
659 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, setuptools
}:
buildPythonPackage rec {
pname = "distro";
version = "1.8.0";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-AuER0dxqUKu47ta/McPkjtiwgw0eoqG3jGF2XCUT/dg=";
};
nativeBuildInputs = [
setuptools
];
# tests are very targeted at individual linux distributions
doCheck = false;
pythonImportsCheck = [ "distro" ];
meta = with lib; {
homepage = "https://github.com/nir0s/distro";
description = "Linux Distribution - a Linux OS platform information API.";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}