nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.typedunits: 0.0.1.dev20250509200845 -> 0.0.1 (#445918)

authored by

dotlambda and committed by
GitHub
17846e2e 9d6f7732

+5 -6
+5 -6
pkgs/development/python-modules/typedunits/default.nix
··· 12 12 pytestCheckHook, 13 13 }: 14 14 15 - buildPythonPackage { 15 + buildPythonPackage rec { 16 16 pname = "typedunits"; 17 - version = "0.0.1.dev20250509200845"; 17 + version = "0.0.1"; 18 18 pyproject = true; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "quantumlib"; 22 22 repo = "TypedUnits"; 23 - # PyPi ships platform- and python- specific wheels, so pin the matching source 24 - rev = "95e698b10454dc8dffdb708d56199a748e6dab75"; 25 - hash = "sha256-mNo2s1sIMOa7zYfp6XyF8CBQ840+XvN0Ek59W6bRqeM="; 23 + tag = "v${version}"; 24 + hash = "sha256-g/kUPEtdyNvcWJOqcTCF27pW22WTg0EiHoEXgSs2xMs="; 26 25 }; 27 26 28 27 build-system = [ ··· 62 63 description = "Units and dimensions library with support for static dimensionality checking and protobuffer serialization"; 63 64 homepage = "https://github.com/quantumlib/TypedUnits"; 64 65 license = lib.licenses.asl20; 65 - maintainers = [ lib.maintainers.sarahec ]; 66 + maintainers = with lib.maintainers; [ sarahec ]; 66 67 }; 67 68 }