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/tools/prospector/setoptconf.nix

26 lines
587 B

{ buildPythonPackage
, fetchPypi
, lib
}:
buildPythonPackage rec {
pname = "setoptconf-tmp";
version = "0.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "0y2pgpraa36wzlzkxigvmz80mqd3mzcc9wv2yx9bliqks7fhlj70";
};
# Base tests provided via PyPi are broken
doCheck = false;
meta = with lib; {
homepage = "https://pypi.org/project/setoptconf-tmp";
description = "A module for retrieving program settings from various sources in a consistant method";
license = licenses.mit;
maintainers = with maintainers; [
kamadorueda
];
};
}