Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

conda-package-streaming: init at 0.9.0

authored by Eric Yen and committed by Sandro Jäckel e3ab5cc9 1335025b

+37
+35
pkgs/development/python-modules/conda-package-streaming/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + flit-core, 6 + requests, 7 + zstandard, 8 + }: 9 + buildPythonPackage rec { 10 + pname = "conda-package-streaming"; 11 + version = "0.9.0"; 12 + pyproject = true; 13 + 14 + src = fetchFromGitHub { 15 + owner = "conda"; 16 + repo = "conda-package-streaming"; 17 + rev = "v${version}"; 18 + hash = "sha256-UTql2M+9eFDuHOwLYYKJ751wEcOfLJYzfU6+WF8Je2g="; 19 + }; 20 + 21 + build-system = [ flit-core ]; 22 + dependencies = [ 23 + requests 24 + zstandard 25 + ]; 26 + 27 + pythonImportsCheck = [ "conda_package_streaming" ]; 28 + 29 + meta = { 30 + description = "An efficient library to read from new and old format .conda and .tar.bz2 conda packages."; 31 + homepage = "https://github.com/conda/conda-package-streaming"; 32 + license = lib.licenses.bsd3; 33 + maintainers = [ lib.maintainers.ericthemagician ]; 34 + }; 35 + }
+2
pkgs/top-level/python-packages.nix
··· 2396 2396 2397 2397 conda-libmamba-solver = callPackage ../development/python-modules/conda-libmamba-solver { }; 2398 2398 2399 + conda-package-streaming = callPackage ../development/python-modules/conda-package-streaming { }; 2400 + 2399 2401 confection = callPackage ../development/python-modules/confection { }; 2400 2402 2401 2403 configargparse = callPackage ../development/python-modules/configargparse { };