Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. { pkgs, commonBuildInputs }:
  2.  
  3. with pkgs;
  4.  
  5. python37.pkgs.buildPythonPackage rec {
  6. name = "six-1.11.0";
  7. src = fetchurl {
  8. url = "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz";
  9. sha256 = "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9";
  10. };
  11. doCheck = false;
  12. buildInputs = commonBuildInputs;
  13. propagatedBuildInputs = [
  14. ];
  15. meta = with stdenv.lib; {
  16. homepage = "";
  17. license = licenses.mit;
  18. description = "A database migration tool for SQLAlchemy.";
  19. };
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement