mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
Merge pull request #213143 from fabaff/dictpath-fix
python310Packages.dictpath: remove
This commit is contained in:
commit
de4b10201c
@ -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 ];
|
||||
};
|
||||
}
|
@ -39,6 +39,7 @@ buildPythonPackage rec {
|
||||
meta = with lib; {
|
||||
description = "Library for object-oriented paths";
|
||||
homepage = "https://github.com/p1c2u/pathable";
|
||||
changelog = "https://github.com/p1c2u/pathable/releases/tag/${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
|
@ -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
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user