DavHau / mach-nix

Create highly reproducible python environments

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't build awxkit from PyPi above 19.4.0 (Oct 2, 2021)

PierreR opened this issue · comments

commented

https://pypi.org/project/awxkit/#history

version 19.4.0 is the last one to work:

let
  mach-nix = import (builtins.fetchGit {
    url = "https://github.com/DavHau/mach-nix";
    ref = "refs/tags/3.5.0";
  }) {};
in
mach-nix.buildPythonPackage {
  pname = "awxkit";
  src = mach-nix.fetchPypiSdist "awxkit" "20.0.1";
  version = "20.0.1";
  requirements = ''
    requests
    PyYAML
  '';
}