python310Packages.dictpath: remove

This commit is contained in:
Fabian Affolter 2023-01-28 12:48:15 +01:00
parent 386bd0d7e9
commit e5bac26172
3 changed files with 1 additions and 38 deletions

View File

@ -1,36 +0,0 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, six
}:
buildPythonPackage rec {
pname = "dictpath";
version = "0.4.3";
src = fetchFromGitHub {
owner = "p1c2u";
repo = "dictpath";
rev = "refs/tags/${version}";
sha256 = "sha256-4QRFjbeaggoEPVGAmSY+qVMNW0DKqarNfRXaH6B58ew=";
};
postPatch = ''
sed -i "/^addopts/d" setup.cfg
'';
nativeCheckInputs = [
pytestCheckHook
six
];
pythonImportsCheck = [ "dictpath" ];
meta = with lib; {
description = "Object-oriented dictionary paths";
homepage = "https://github.com/p1c2u/dictpath";
license = licenses.asl20;
maintainers = with maintainers; [ dotlambda ];
};
}

View File

@ -55,6 +55,7 @@ mapAliases ({
demjson = throw "demjson has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18
detox = throw "detox is no longer maintained, and was broken since may 2019"; # added 2020-07-04
dftfit = throw "dftfit dependency lammps-cython no longer builds"; # added 2021-07-04
dictpath = pathable; # added 2023-01-28
diff_cover = diff-cover; # added 2021-07-02
discogs_client = discogs-client; # added 2021-07-02
djangorestframework-jwt = drf-jwt; # added 2021-07-20

View File

@ -2389,8 +2389,6 @@ self: super: with self; {
dictionaries = callPackage ../development/python-modules/dictionaries { };
dictpath = callPackage ../development/python-modules/dictpath { };
dicttoxml = callPackage ../development/python-modules/dicttoxml { };
dicttoxml2 = callPackage ../development/python-modules/dicttoxml2 { };