summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pycryptodomex/default.nix
blob: 56b09bdda83258e5f5a916475c40c887fcbfb629 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ pycryptodome }:

(pycryptodome.overrideAttrs (oldAttrs: {
  pname = "pycryptodomex";

  postPatch = ''
    touch .separate_namespace
  '';

  pythonImportsCheck = [ "Cryptodome" ];
}))