mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
Merge pull request #189748 from bcdarwin/python3-prodict
python3Packages.prodict: init at 0.8.6
This commit is contained in:
commit
cac240a783
35
pkgs/development/python-modules/prodict/default.nix
Normal file
35
pkgs/development/python-modules/prodict/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
, pytestCheckHook
|
||||
, lib
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "prodict";
|
||||
version = "0.8.6";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ramazanpolat";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-c46JEQFg4KRwerqpMSgh6+tYRpKTOX02Lzsq4/meS3o=";
|
||||
};
|
||||
|
||||
# make setuptools happy on case-sensitive filesystems
|
||||
postPatch = ''if [[ ! -f README.md ]]; then mv README.MD README.md; fi'';
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "prodict" ];
|
||||
|
||||
meta = {
|
||||
description = "Access Python dictionary as a class with type hinting and autocompletion";
|
||||
homepage = "https://github.com/ramazanpolat/prodict";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ bcdarwin ];
|
||||
};
|
||||
}
|
@ -6969,6 +6969,8 @@ self: super: with self; {
|
||||
|
||||
ppdeep = callPackage ../development/python-modules/ppdeep { };
|
||||
|
||||
prodict = callPackage ../development/python-modules/prodict { };
|
||||
|
||||
proxy_tools = callPackage ../development/python-modules/proxy_tools { };
|
||||
|
||||
py-nextbusnext = callPackage ../development/python-modules/py-nextbusnext { };
|
||||
|
Loading…
Reference in New Issue
Block a user