about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycryptodomex/default.nix
blob: 9d476ea4728c177b06a1183e45c3555947488893 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pycryptodome }:

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

  postPatch = ''
    touch .separate_namespace
  '';

  pythonImportsCheck = [
    "Cryptodome"
  ];
}))