1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

oslo-config,sqlalchemy: add makefu to list of maintainers

This commit is contained in:
makefu 2017-09-23 15:08:28 +02:00
parent 78621e384c
commit d7c26f24b9
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225
2 changed files with 10 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ buildPythonPackage, fetchPypi, pbr, six, netaddr, stevedore, mock,
{ lib, buildPythonPackage, fetchPypi, pbr, six, netaddr, stevedore, mock,
debtcollector, rfc3986, pyyaml, oslo-i18n }:
buildPythonPackage rec {
@ -21,4 +21,12 @@ buildPythonPackage rec {
substituteInPlace requirements.txt --replace "argparse" ""
'';
meta = with lib; {
description = "Oslo Configuration API";
homepage = "https://docs.openstack.org/oslo.config/latest/";
license = licenses.asl20;
maintainers = with maintainers; [ makefu ];
};
}

View file

@ -33,5 +33,6 @@ buildPythonPackage rec {
homepage = http://code.google.com/p/sqlalchemy-migrate/;
description = "Schema migration tools for SQLAlchemy";
license = licenses.asl20;
maintainers = with maintainers; [ makefu ];
};
}