nixpkgs/pkgs/development/python-modules/buildout/default.nix

19 lines
467 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "zc.buildout";
2018-08-13 08:22:55 +01:00
version = "2.12.1";
src = fetchPypi {
inherit pname version;
2018-08-13 08:22:55 +01:00
sha256 = "1e180b62fd129a68cb3a9ec8eb0ef457e18921269a93e87ef2cc34519415332d";
};
meta = with stdenv.lib; {
homepage = http://www.buildout.org;
description = "A software build and configuration system";
license = licenses.zpl21;
maintainers = with maintainers; [ garbas ];
};
}