My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/distro/default.nix

23 lines
577 B

{ lib, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "distro";
version = "1.7.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-FRrsz2DCFkApMrUuQO5HepOfjViJiSc3igKrvoUsHDk=";
};
# 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; [ ];
};
}