tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
betamax-matchers: init at 0.2.0
Pascal Wittmann
10 years ago
8443067e
e7757c47
+19
1 changed file
expand all
collapse all
unified
split
pkgs
top-level
python-packages.nix
+19
pkgs/top-level/python-packages.nix
···
1305
1305
};
1306
1306
};
1307
1307
1308
1308
+
betamax-matchers = buildPythonPackage rec {
1309
1309
+
name = "betamax-matchers-${version}";
1310
1310
+
version = "0.2.0";
1311
1311
+
1312
1312
+
src = pkgs.fetchurl {
1313
1313
+
url = "https://pypi.python.org/packages/source/b/betamax-matchers/${name}.tar.gz";
1314
1314
+
sha256 = "13n2dy8s2jx8x8bbx684bff3444584bnmg0zhkfxhxndpy18p4is";
1315
1315
+
};
1316
1316
+
1317
1317
+
buildInputs = with self; [ betamax requests_toolbelt ];
1318
1318
+
1319
1319
+
meta = with stdenv.lib; {
1320
1320
+
homepage = https://github.com/sigmavirus24/betamax_matchers;
1321
1321
+
description = "A group of experimental matchers for Betamax";
1322
1322
+
license = licenses.asl20;
1323
1323
+
maintainers = with maintainers; [ pSub ];
1324
1324
+
};
1325
1325
+
};
1326
1326
+
1308
1327
caldavclientlibrary-asynk = buildPythonPackage rec {
1309
1328
version = "asynkdev";
1310
1329
name = "caldavclientlibrary-asynk-${version}";