mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
python312Packages.pysvn: 1.9.22 -> 1.9.23 (#363066)
This commit is contained in:
@@ -7,40 +7,28 @@
|
||||
apr,
|
||||
aprutil,
|
||||
bash,
|
||||
e2fsprogs,
|
||||
expat,
|
||||
gcc,
|
||||
neon,
|
||||
glibcLocales,
|
||||
openssl,
|
||||
pycxx,
|
||||
subversion,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysvn";
|
||||
version = "1.9.22";
|
||||
format = "other";
|
||||
version = "1.9.23";
|
||||
pyproject = false;
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/pysvn/pysvn/V${version}/pysvn-${version}.tar.gz";
|
||||
hash = "sha256-KfLg9tuuKpXxJoniD002kDXGCTwOZ9jurCoPrWMRo7g=";
|
||||
hash = "sha256-ABru1nng1RaYfZwe0Z0NxE90rU/J2h/BhzUnvgrasCk=";
|
||||
};
|
||||
|
||||
patches = [ ./replace-python-first.patch ];
|
||||
|
||||
buildInputs =
|
||||
[
|
||||
bash
|
||||
subversion
|
||||
apr
|
||||
aprutil
|
||||
expat
|
||||
neon
|
||||
openssl
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isLinux [ e2fsprogs ]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [ gcc ];
|
||||
buildInputs = [
|
||||
subversion
|
||||
apr
|
||||
aprutil
|
||||
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ gcc ];
|
||||
|
||||
preConfigure = ''
|
||||
cd Source
|
||||
@@ -56,8 +44,6 @@ buildPythonPackage rec {
|
||||
--svn-bin-dir=${subversion.out}/bin
|
||||
'';
|
||||
|
||||
nativeCheckInputs = [ glibcLocales ];
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
|
||||
|
||||
@@ -12629,7 +12629,7 @@ self: super: with self; {
|
||||
pysvg-py3 = callPackage ../development/python-modules/pysvg-py3 { };
|
||||
|
||||
pysvn = callPackage ../development/python-modules/pysvn {
|
||||
inherit (pkgs) bash subversion apr aprutil expat neon openssl;
|
||||
inherit (pkgs) bash subversion apr aprutil;
|
||||
};
|
||||
|
||||
pyswitchbee = callPackage ../development/python-modules/pyswitchbee { };
|
||||
|
||||
Reference in New Issue
Block a user