depot/third_party/nixpkgs/pkgs/development/python-modules/distro/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

23 lines
605 B
Nix

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