mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
26 lines
593 B
Nix
26 lines
593 B
Nix
{ stdenv, python, buildPythonPackage, fetchPypi }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pony";
|
|
version = "0.7.13";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1fqc45m106xfy4hhzzwb8p7s2fh5x2x7s143dib84lbszqwp77la";
|
|
};
|
|
|
|
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 xvapx ];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|