nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 33 lines 678 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 pytestCheckHook, 6 setuptools, 7}: 8 9buildPythonPackage rec { 10 pname = "uc-micro-py"; 11 version = "1.0.3"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "tsutsu3"; 16 repo = "uc.micro-py"; 17 tag = "v${version}"; 18 hash = "sha256-Z7XHWeV5I/y19EKg4lzcl9pwRexWnSQ7d8CpQu5xdnI="; 19 }; 20 21 nativeBuildInputs = [ setuptools ]; 22 23 pythonImportsCheck = [ "uc_micro" ]; 24 25 nativeCheckInputs = [ pytestCheckHook ]; 26 27 meta = { 28 description = "Micro subset of unicode data files for linkify-it-py"; 29 homepage = "https://github.com/tsutsu3/uc.micro-py"; 30 license = lib.licenses.mit; 31 maintainers = [ ]; 32 }; 33}