Merge pull request #202522 from gotcha/zc-buildout-3.0.1

python3Packages.zc-buildout: 3.0.0b2 -> 3.0.1
This commit is contained in:
Domen Kožar 2022-12-02 16:02:29 +00:00 committed by GitHub
commit 6be5bb3172
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View file

@ -5170,6 +5170,12 @@
fingerprint = "C006 B8A0 0618 F3B6 E0E4 2ECD 5D47 2848 30FA A4FA";
}];
};
gotcha = {
email = "gotcha@bubblenet.be";
github = "gotcha";
githubId = 105204;
name = "Godefroid Chapelle";
};
govanify = {
name = "Gauvain 'GovanifY' Roussel-Tarbouriech";
email = "gauvain@govanify.com";

View file

@ -8,13 +8,13 @@
buildPythonPackage rec {
pname = "zc-buildout";
version = "3.0.0b2";
version = "3.0.1";
src = fetchFromGitHub {
owner = "buildout";
repo = "buildout";
rev = version;
sha256 = "01sj09xx5kmkzynhq1xd8ahn6xqybfi8lrqjqr5lr45aaxjk2pid";
sha256 = "J/ymUCFhl7EviHMEYSUCTky0ULRT8aL4gNCGxrbqJi0=";
};
propagatedBuildInputs = [
@ -32,6 +32,6 @@ buildPythonPackage rec {
downloadPage = "https://github.com/buildout/buildout";
homepage = "https://www.buildout.org";
license = licenses.zpl21;
maintainers = with maintainers; [ ];
maintainers = with maintainers; [ gotcha ];
};
}