mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
pythonPackages.pony: init at 0.7.11
pony is an ORM library. The main motivation for adding this package is to allow migrating tribler to a newer version that supports python3. Also adding myself to maintainers to not leave this one without, even though I dont use it myself much, if anybody else feels like it fits their interests, feel free to add yourselves.
This commit is contained in:
parent
e0734891f8
commit
c68bc50e42
3 changed files with 37 additions and 0 deletions
|
@ -1484,6 +1484,16 @@
|
|||
}
|
||||
];
|
||||
};
|
||||
d-goldin = {
|
||||
email = "dgoldin+github@protonmail.ch";
|
||||
github = "d-goldin";
|
||||
githubId = 43349662;
|
||||
name = "Dima";
|
||||
keys = [{
|
||||
longkeyid = "rsa4096/BAB1D15FB7B4D4CE";
|
||||
fingerprint = "1C4E F4FE 7F8E D8B7 1E88 CCDF BAB1 D15F B7B4 D4CE";
|
||||
}];
|
||||
};
|
||||
dadada = {
|
||||
name = "dadada";
|
||||
email = "dadada@dadada.li";
|
||||
|
|
25
pkgs/development/python-modules/pony/default.nix
Normal file
25
pkgs/development/python-modules/pony/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, python, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pony";
|
||||
version = "0.7.11";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "05vyvsbcb99vjjs7qpbwy8j4m854w74z8di6zqsv8p9wbm38s06i";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
|
||||
# stripping the tests
|
||||
postInstall = ''
|
||||
rm -rf $out/${python.sitePackages}/pony/orm/tests
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Pony is a Python ORM with beautiful query syntax";
|
||||
homepage = "https://ponyorm.org/";
|
||||
maintainers = with maintainers; [ d-goldin ];
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
|
@ -6568,6 +6568,8 @@ in {
|
|||
|
||||
managesieve = callPackage ../development/python-modules/managesieve { };
|
||||
|
||||
pony = callPackage ../development/python-modules/pony { };
|
||||
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
|
Loading…
Reference in a new issue