Compare commits
No commits in common. "a5b2e66fa1c69c281faf4946b92a91b4ff8219d1" and "1843e746bd2efbe7fe643309250bb416f4929ea1" have entirely different histories.
a5b2e66fa1
...
1843e746bd
3 changed files with 6 additions and 10 deletions
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
pkgs ? (import <nixpkgs> { }),
|
||||
}:
|
||||
import pkgs.path { overlays = pkgs.overlays ++ [ (import ./overlay.nix) ]; }
|
||||
{ pkgs, lib ? pkgs.lib }: with lib;
|
||||
mapAttrs' (name: _: {
|
||||
value = pkgs.python3.pkgs.callPackage (./python-pkgs/${name}) { };
|
||||
name = removeSuffix ".nix" name;
|
||||
}) (builtins.readDir ./python-pkgs)
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
self: super: with super.lib;
|
||||
mapAttrs' (name: _: {
|
||||
value = self.python3.pkgs.callPackage (./python-pkgs/${name}) { };
|
||||
name = removeSuffix ".nix" name;
|
||||
}) (builtins.readDir ./python-pkgs)
|
|
@ -23,7 +23,7 @@ buildPythonPackage rec {
|
|||
wheel
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "impersonate" ];
|
||||
# pythonImportsCheck = [ "django_impersonate" ];
|
||||
|
||||
meta = {
|
||||
description = "Fork of https://bitbucket.org/petersanchez/django-impersonate";
|
||||
|
|
Loading…
Reference in a new issue