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/addict/default.nix

26 lines
610 B

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "addict";
version = "2.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "b3b2210e0e067a281f5646c8c5db92e99b7231ea8b0eb5f74dbdf9e259d4e494";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "addict" ];
meta = with lib; {
description = "Module that exposes a dictionary subclass that allows items to be set like attributes";
homepage = "https://github.com/mewwts/addict";
license = with licenses; [ mit ];
maintainers = with maintainers; [ veprbl ];
};
}