Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pony / default.nix
blob03330c4cfec76772d14d169e730854bce1e8b4fd
1 { lib, python, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "pony";
5   version = "0.7.14";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "2f01e84e79ea7a14040225cb6c079bb266e7ba147346356c266490b18c77ce82";
10   };
12   doCheck = true;
14   # stripping the tests
15   postInstall = ''
16     rm -rf $out/${python.sitePackages}/pony/orm/tests
17   '';
19   meta = with lib; {
20     description = "Pony is a Python ORM with beautiful query syntax";
21     homepage = "https://ponyorm.org/";
22     maintainers = with maintainers; [ d-goldin xvapx ];
23     license = licenses.asl20;
24   };