Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 28 lines 613 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonOlder 5}: 6 7buildPythonPackage rec { 8 pname = "aiowinreg"; 9 version = "0.0.4"; 10 11 disabled = pythonOlder "3.6"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "956278a90ef6958f9e2392891b2a305273f695b15b14489cd2097197d6cbe155"; 16 }; 17 18 # Project doesn't have tests 19 doCheck = false; 20 pythonImportsCheck = [ "aiowinreg" ]; 21 22 meta = with lib; { 23 description = "Python module to parse the registry hive"; 24 homepage = "https://github.com/skelsec/aiowinreg"; 25 license = with licenses; [ mit ]; 26 maintainers = with maintainers; [ fab ]; 27 }; 28}