mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
python2Packages.cryptography-vectors: pin at 2.9.2
This commit is contained in:
parent
22cc69ca01
commit
6f17a51e72
23
pkgs/development/python-modules/cryptography/vectors-2.9.nix
Normal file
23
pkgs/development/python-modules/cryptography/vectors-2.9.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ buildPythonPackage, fetchPypi, lib, cryptography }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cryptography_vectors";
|
||||
# The test vectors must have the same version as the cryptography package:
|
||||
version = cryptography.version;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1d4iykcv7cn9j399hczlxm5pzxmqy6d80h3j16dkjwlmv3293b4r";
|
||||
};
|
||||
|
||||
# No tests included
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Test vectors for the cryptography package";
|
||||
homepage = "https://cryptography.io/en/latest/development/test-vectors/";
|
||||
# Source: https://github.com/pyca/cryptography/tree/master/vectors;
|
||||
license = with licenses; [ asl20 bsd3 ];
|
||||
maintainers = with maintainers; [ primeos ];
|
||||
};
|
||||
}
|
@ -2469,7 +2469,10 @@ in {
|
||||
else
|
||||
callPackage ../development/python-modules/cryptography { };
|
||||
|
||||
cryptography_vectors = callPackage ../development/python-modules/cryptography/vectors.nix { };
|
||||
cryptography_vectors = if isPy27 then
|
||||
callPackage ../development/python-modules/cryptography/vectors-2.9.nix { }
|
||||
else
|
||||
callPackage ../development/python-modules/cryptography/vectors.nix { };
|
||||
|
||||
curtsies = callPackage ../development/python-modules/curtsies { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user