lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python.pkgs.python-axolotl: move to a separate file

+23 -21
+22
pkgs/development/python-modules/python-axolotl/default.nix
··· 1 + { lib, buildPythonPackage, fetchurl, python-axolotl-curve25519, protobuf, pycrypto }: 2 + 3 + buildPythonPackage rec { 4 + name = "python-axolotl-${version}"; 5 + version = "0.1.39"; 6 + 7 + src = fetchurl { 8 + url = "mirror://pypi/p/python-axolotl/${name}.tar.gz"; 9 + sha256 = "09bf5gfip9x2wr0ij43p39ac6z2iqzn7kgpi2jjbwpnhs0vwkycs"; 10 + }; 11 + 12 + propagatedBuildInputs = [ python-axolotl-curve25519 protobuf pycrypto ]; 13 + # IV == 0 in tests is not supported by pycryptodome (our pycrypto drop-in) 14 + doCheck = false; 15 + 16 + meta = with lib; { 17 + homepage = https://github.com/tgalal/python-axolotl; 18 + description = "Python port of libaxolotl-android"; 19 + maintainers = with maintainers; [ abbradar ]; 20 + license = licenses.gpl3; 21 + }; 22 + }
+1 -21
pkgs/top-level/python-packages.nix
··· 6126 6126 }; 6127 6127 }; 6128 6128 6129 - python-axolotl = buildPythonPackage rec { 6130 - name = "python-axolotl-${version}"; 6131 - version = "0.1.39"; 6132 - 6133 - src = pkgs.fetchurl { 6134 - url = "mirror://pypi/p/python-axolotl/${name}.tar.gz"; 6135 - sha256 = "09bf5gfip9x2wr0ij43p39ac6z2iqzn7kgpi2jjbwpnhs0vwkycs"; 6136 - }; 6137 - 6138 - propagatedBuildInputs = with self; [ python-axolotl-curve25519 protobuf pycrypto ]; 6139 - # IV == 0 in tests is not supported by pycryptodome (our pycrypto drop-in) 6140 - doCheck = false; 6141 - 6142 - meta = { 6143 - homepage = "https://github.com/tgalal/python-axolotl"; 6144 - description = "Python port of libaxolotl-android"; 6145 - maintainers = with maintainers; [ abbradar ]; 6146 - license = licenses.gpl3; 6147 - platforms = platforms.all; 6148 - }; 6149 - }; 6129 + python-axolotl = callPackage ../development/python-modules/python-axolotl { }; 6150 6130 6151 6131 python-axolotl-curve25519 = buildPythonPackage rec { 6152 6132 name = "python-axolotl-curve25519-${version}";