mach-nix/pypi-crawlers/nix/python.nix

16 lines
279 B
Nix
Raw Normal View History

let
mach-nix = import (builtins.fetchGit {
2021-07-23 13:03:32 +00:00
url = "https://github.com/DavHau/mach-nix";
2021-04-17 12:55:44 +00:00
ref = "refs/tags/3.2.0";
}) {};
in
mach-nix.mkPython {
requirements = ''
packaging
requests
psycopg2 >= 2.8.0
pkginfo
peewee
bounded-pool-executor
'';
}