Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.05 39 lines 727 B view raw
1{ lib 2, boto3 3, buildPythonPackage 4, fetchPypi 5, pythonOlder 6, typing-extensions 7}: 8 9buildPythonPackage rec { 10 pname = "mypy-boto3-ebs"; 11 version = "1.26.0"; 12 format = "setuptools"; 13 14 disabled = pythonOlder "3.7"; 15 16 src = fetchPypi { 17 inherit pname version; 18 hash = "sha256-w15SM5F1IFtX4qDrMv5B7PItaTnXOOABg0aUU24onBk="; 19 }; 20 21 propagatedBuildInputs = [ 22 boto3 23 typing-extensions 24 ]; 25 26 # Project has no tests 27 doCheck = false; 28 29 pythonImportsCheck = [ 30 "mypy_boto3_ebs" 31 ]; 32 33 meta = with lib; { 34 description = "Type annotations for boto3.s3"; 35 homepage = "https://github.com/youtype/mypy_boto3_builder"; 36 license = with licenses; [ mit ]; 37 maintainers = with maintainers; [ fab ]; 38 }; 39}