mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
python39Packages.zconfig: 3.5.0 -> 3.6.0
This commit is contained in:
parent
6768268c21
commit
ca8a59801e
@ -1,32 +1,27 @@
|
||||
{ lib, stdenv
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchPypi
|
||||
, fetchpatch
|
||||
, buildPythonPackage
|
||||
, zope_testrunner
|
||||
, manuel
|
||||
, docutils
|
||||
, pythonAtLeast
|
||||
, pygments
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ZConfig";
|
||||
version = "3.5.0";
|
||||
version = "3.6.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0s7aycxna07a04b4rswbkj4y5qh3gxy2mcsqb9dmy0iimj9f9550";
|
||||
sha256 = "sha256-oo6VoK4zV5V0fsytNbLLcI831Ex/Ml4qyyAemDMLFuU=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# fixes 3.8+ logger validation issues, has been merged into master, remove next bump
|
||||
(fetchpatch {
|
||||
url = "https://github.com/zopefoundation/ZConfig/commit/f0c2990d35ac3c924ecc8be4a5c71c8e4abbd0e5.patch";
|
||||
sha256 = "1bjg3wrvii0rwzf3s0vlpzgg2ckj0h2zxkyxwjcr64s4k2vaq9ij";
|
||||
})
|
||||
] ++ lib.optional stdenv.hostPlatform.isMusl ./remove-setlocale-test.patch;
|
||||
patches = lib.optional stdenv.hostPlatform.isMusl ./remove-setlocale-test.patch;
|
||||
|
||||
buildInputs = [ manuel docutils ];
|
||||
propagatedBuildInputs = [ zope_testrunner ];
|
||||
checkInputs = [ pygments ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Structured Configuration Library";
|
||||
|
Loading…
Reference in New Issue
Block a user