mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.pygit2: 0.23.1 -> 0.24.0 (#15986)
This commit is contained in:
parent
ddf59093ee
commit
20bb5402dc
1 changed files with 3 additions and 3 deletions
|
@ -17617,18 +17617,18 @@ in modules // {
|
|||
};
|
||||
|
||||
pygit2 = buildPythonPackage rec {
|
||||
name = "pygit2-0.23.1";
|
||||
name = "pygit2-0.24.0";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/p/pygit2/${name}.tar.gz";
|
||||
sha256 = "04201vcal7jq8lbpk9ylscrhjxdcf2aihiw25k4imjjqgfmvldf7";
|
||||
sha256 = "01c155ls0h5pvpdkrk8ld6fscshmz4fchcwxrg488dbij1zdjxms";
|
||||
};
|
||||
|
||||
preConfigure = ( if stdenv.isDarwin then ''
|
||||
export DYLD_LIBRARY_PATH="${pkgs.libgit2}/lib"
|
||||
'' else "" );
|
||||
|
||||
propagatedBuildInputs = with self; [ pkgs.libgit2 ] ++ optionals (!isPyPy) [ cffi ];
|
||||
propagatedBuildInputs = with self; [ pkgs.libgit2 six ] ++ optionals (!isPyPy) [ cffi ];
|
||||
|
||||
preCheck = ''
|
||||
# disable tests that require networking
|
||||
|
|
Loading…
Reference in a new issue